home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / zfcmap.c < prev    next >
C/C++ Source or Header  |  1997-03-17  |  10KB  |  338 lines

  1. /* Copyright (C) 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zfcmap.c */
  20. /* CMap creation operator */
  21. #include "ghost.h"
  22. #include "errors.h"
  23. #include "oper.h"
  24. #include "gsmatrix.h"        /* for gxfont.h */
  25. #include "gsstruct.h"
  26. #include "gsutil.h"        /* for bytes_compare */
  27. #include "gxfcmap.h"
  28. #include "gxfont.h"
  29. #include "ialloc.h"
  30. #include "idict.h"
  31. #include "idparam.h"
  32. #include "ifont.h"        /* for zfont_mark_glyph_name */
  33. #include "iname.h"
  34. #include "store.h"
  35.  
  36. /* ---------------- Internal procedures ---------------- */
  37.  
  38. /* Free a code map tree in case of memory overflow. */
  39. private void
  40. free_code_map(gx_code_map *pcmap, gs_memory_t *mem)
  41. {    if ( pcmap->type == cmap_subtree )
  42.       { int i;
  43.         for ( i = pcmap->byte_data.count1; i >= 0; --i )
  44.           free_code_map(&pcmap->data.subtree[i], mem);
  45.         gs_free_object(mem, pcmap->data.subtree, "free_code_map");
  46.       }
  47. }
  48.  
  49. /* Convert a single code map to internal form. */
  50. /* This needs to be completely rewritten for space efficiency! */
  51. private int
  52. acquire_code_map(gx_code_map *pcmap, const ref *pref, int depth,
  53.   gs_cmap *root, gs_memory_t *mem)
  54. {    if ( depth >= 4 )
  55.       return_error(e_limitcheck);
  56.     pcmap->add_offset = 0;
  57.     pcmap->cmap = root;
  58.     switch ( r_type(pref) )
  59.       {
  60.       case t_null:
  61.         pcmap->type = cmap_glyph;
  62.         pcmap->byte_data.font_index = 0;
  63.         pcmap->data.glyph = gs_no_glyph;
  64.         return 0;
  65.       case t_name:
  66.         pcmap->type = cmap_glyph;
  67.         pcmap->byte_data.font_index = 0;
  68.         pcmap->data.glyph = name_index(pref);
  69.         return 0;
  70.       case t_integer:
  71.         if ( pref->value.intval < 0 ||
  72.          pref->value.intval > gs_max_glyph - gs_min_cid_glyph
  73.            )
  74.           break;
  75.         pcmap->type = cmap_glyph;
  76.         pcmap->data.glyph = pref->value.intval + gs_min_cid_glyph;
  77.         return 0;
  78.       case t_string:
  79.         if ( r_size(pref) < 1 || r_size(pref) > 4 )
  80.           break;
  81.         pcmap->type = cmap_char_code;
  82.         pcmap->num_bytes1 = r_size(pref) - 1;
  83.         pcmap->byte_data.font_index = 0;
  84.         { int i;
  85.           gs_char chr = 0;
  86.  
  87.           for ( i = 0; i < r_size(pref); ++i )
  88.         chr = (chr << 8) + pref->value.const_bytes[i];
  89.           pcmap->data.ccode = chr;
  90.         }
  91.         return 0;
  92.       default:
  93.         if ( !r_is_array(pref) || r_size(pref) < 1 || r_size(pref) > 256 )
  94.           break;
  95.         { uint size = r_size(pref);
  96.           uint count = 0;
  97.           ref_type rtype = t_null;
  98.           long prev_value;
  99.           long diff;
  100.           uint run_length;
  101.           ref rsub;
  102.           gx_code_map *subtree;
  103.           uint i, j;
  104.  
  105.           /* Do a first pass to count non-null entries and find runs. */
  106.  
  107.           for ( rtype = t_null, i = 0; i < size; ++i )
  108.         { ref_type prev_type = rtype;
  109.  
  110.           array_get(pref, (long)i, &rsub);
  111.           rtype = r_type(&rsub);
  112.           switch ( rtype )
  113.             {
  114.             case t_null:
  115.               continue;
  116.             case t_integer:
  117.               if ( prev_type == t_integer )
  118.             { if ( run_length == 1 )
  119.                 { diff = rsub.value.intval - prev_value;
  120.                   if ( diff & ~1L )
  121.                 goto noseq;
  122.                   run_length = 2;
  123.                   continue;
  124.                 }
  125.               else if ( rsub.value.intval - prev_value == diff )
  126.                 { prev_value = rsub.value.intval;
  127.                   ++run_length;
  128.                   continue;
  129.                 }
  130.             }
  131. noseq:              prev_value = rsub.value.intval;
  132.               run_length = 1;
  133.               /* falls through */
  134.             default:
  135.               ++count;
  136.             }
  137.         }
  138.  
  139.           if ( count == 0 )
  140.         count = 1;
  141.           subtree =
  142.         gs_alloc_struct_array(mem, count, gx_code_map,
  143.                       &st_code_map_element,
  144.                       "acquire_code_map");
  145.           if ( subtree == 0 )
  146.         return_error(e_VMerror);
  147.           pcmap->type = cmap_subtree;
  148.           pcmap->data.subtree = subtree;
  149.           /* Initialize a single undefined entry, in case count = 0 */
  150.           /* or we have to bail out with j = 0. */
  151.           subtree->first = subtree->last = 255;
  152.           subtree->type = cmap_glyph;
  153.           subtree->byte_data.font_index = 0;
  154.           subtree->data.glyph = gs_no_glyph;
  155.  
  156.           /* Do the second pass to construct the tree. */
  157.  
  158.           for ( rtype = t_null, i = j = 0; i < size; ++i )
  159.         { ref_type prev_type = rtype;
  160.           gx_code_map *submap = &subtree[j];
  161.           int code;
  162.  
  163.           array_get(pref, (long)i, &rsub);
  164.           rtype = r_type(&rsub);
  165.           switch ( rtype )
  166.             {
  167.             case t_null:
  168.               continue;
  169.             case t_integer:
  170.               if ( prev_type == t_integer )
  171.             { if ( submap[-1].first == submap[-1].last )
  172.                 { diff = rsub.value.intval - prev_value;
  173.                   if ( diff & ~1L )
  174.                 goto nseq;
  175.                   submap[-1].add_offset = (uint)diff;
  176.                   submap[-1].last++;
  177.                   continue;
  178.                 }
  179.               else if ( rsub.value.intval - prev_value == diff )
  180.                 { prev_value = rsub.value.intval;
  181.                   submap[-1].last++;
  182.                   continue;
  183.                 }
  184.             }
  185. nseq:              prev_value = rsub.value.intval;
  186.               /* falls through */
  187.             default:
  188.               code = acquire_code_map(submap, &rsub, depth + 1,
  189.                           root, mem);
  190.               if ( code < 0 )
  191.             { /* Release allocated elements. */
  192.               pcmap->byte_data.count1 = (j ? j - 1 : 0);
  193.               free_code_map(pcmap, mem);
  194.               return code;
  195.             }
  196.               submap->first = submap->last = (byte)i;
  197.               ++j;
  198.             }
  199.         }
  200.           pcmap->byte_data.count1 = count - 1;
  201.         }
  202.         return 0;
  203.       }
  204.     return_error(e_rangecheck);
  205. }
  206.  
  207. /* Acquire CIDSystemInfo. */
  208. /* Note that this currently does not handle the array format. */
  209. private int
  210. acquire_cid_system_info(gs_cid_system_info *pcidsi, const ref *op)
  211. {    ref *prcidsi;
  212.     ref *pregistry;
  213.     ref *pordering;
  214.     int code;
  215.  
  216.     if ( (code = dict_find_string(op, "CIDSystemInfo", &prcidsi)) <= 0 )
  217.       return_error(e_rangecheck);
  218.     if ( !r_has_type(prcidsi, t_dictionary) )
  219.       return_error(e_typecheck);
  220.     if ( (code = dict_find_string(prcidsi, "Registry", &pregistry)) <= 0 ||
  221.          (code = dict_find_string(prcidsi, "Ordering", &pordering)) <= 0
  222.        )
  223.       return_error(e_rangecheck);
  224.     check_read_type_only(*pregistry, t_string);
  225.     check_read_type_only(*pordering, t_string);
  226.     pcidsi->Registry.data = pregistry->value.const_bytes;
  227.     pcidsi->Registry.size = r_size(pregistry);
  228.     pcidsi->Ordering.data = pordering->value.const_bytes;
  229.     pcidsi->Ordering.size = r_size(pordering);
  230.     return dict_int_param(prcidsi, "Supplement", 0, max_int, -1,
  231.                   &pcidsi->Supplement);
  232. }
  233.  
  234. /* Check compatibility of CIDSystemInfo. */
  235. private bool
  236. cid_system_info_compatible(const gs_cid_system_info *psi1,
  237.   const gs_cid_system_info *psi2)
  238. {
  239. #define si_eq(part)\
  240.   !bytes_compare(psi1->part.data, psi1->part.size,\
  241.          psi2->part.data, psi2->part.size)
  242.     return si_eq(Registry) && si_eq(Ordering);
  243. #undef si_eq
  244. }
  245.  
  246. /* ---------------- (Semi-)public procedures ---------------- */
  247.  
  248. /* Get the CodeMap from a Type 0 font, and check the CIDSystemInfo of */
  249. /* its subsidiary fonts. */
  250. int
  251. ztype0_get_cmap(const gs_cmap **ppcmap, const ref *pfdepvector, const ref *op)
  252. {    ref *prcmap;
  253.     ref *pcodemap;
  254.     const gs_cmap *pcmap;
  255.     int code;
  256.     ref rfdep;
  257.     gs_cid_system_info cidsi;
  258.  
  259.     if ( dict_find_string(op, "CMap", &prcmap) <= 0 ||
  260.          !r_has_type(prcmap, t_dictionary) ||
  261.          dict_find_string(prcmap, "CodeMap", &pcodemap) <= 0 ||
  262.          !r_has_stype(pcodemap, imemory, st_cmap)
  263.        )
  264.       return_error(e_invalidfont);
  265.     pcmap = r_ptr(pcodemap, gs_cmap);
  266.     /* Currently we only handle 1-element fonts. */
  267.     if ( r_size(pfdepvector) != 1)
  268.       return_error(e_rangecheck);
  269.     array_get(pfdepvector, 0L, &rfdep);
  270.     code = acquire_cid_system_info(&cidsi, &rfdep);
  271.     if ( code < 0 )
  272.       return code;
  273.     if ( !cid_system_info_compatible(&cidsi, &pcmap->CIDSystemInfo) )
  274.       return_error(e_rangecheck);
  275.     *ppcmap = pcmap;
  276.     return 0;
  277. }
  278.  
  279. /* ---------------- Operators ---------------- */
  280.  
  281. /* <CMap> .buildcmap <CMap> */
  282. /*
  283.  * Create the internal form of a CMap.  The initial CMap must be read-write
  284.  * and have an entry with key = CodeMap and value = null; the result is
  285.  * read-only and has a real CodeMap.
  286.  */
  287. private int
  288. zbuildcmap(os_ptr op)
  289. {    int code;
  290.     ref *pcodemaps;
  291.     ref *pcodemap;
  292.     gs_cmap *pcmap;
  293.     ref rdef, rnotdef, rcmap;
  294.  
  295.     check_type(*op, t_dictionary);
  296.     check_dict_write(*op);
  297.     pcmap = ialloc_struct(gs_cmap, &st_cmap, "zbuildcmap(cmap)");
  298.     if ( pcmap == 0 )
  299.       { code = gs_note_error(e_VMerror);
  300.         goto fail;
  301.       }
  302.     if ( (code = dict_uid_param(op, &pcmap->uid, 0, imemory)) < 0 ||
  303.          (code = dict_int_param(op, "WMode", 0, 1, 0, &pcmap->WMode)) < 0
  304.        )
  305.       goto fail;
  306.     if ( dict_find_string(op, ".CodeMaps", &pcodemaps) <= 0 ||
  307.          !r_has_type(pcodemaps, t_array) ||
  308.          r_size(pcodemaps) != 2 ||
  309.          dict_find_string(op, "CodeMap", &pcodemap) <= 0 ||
  310.          !r_has_type(pcodemap, t_null)
  311.        )
  312.       { code = gs_note_error(e_rangecheck);
  313.         goto fail;
  314.       }
  315.     if ( (code = acquire_cid_system_info(&pcmap->CIDSystemInfo, op)) < 0 ||
  316.          (array_get(pcodemaps, 0L, &rdef),
  317.           (code = acquire_code_map(&pcmap->def, &rdef, 0, pcmap, imemory)) < 0) ||
  318.          (array_get(pcodemaps, 1L, &rnotdef),
  319.           (code = acquire_code_map(&pcmap->notdef, &rnotdef, 0, pcmap, imemory)) < 0)
  320.        )
  321.       goto fail;
  322.     pcmap->mark_glyph = zfont_mark_glyph_name;
  323.     pcmap->mark_glyph_data = 0;
  324.     make_istruct_new(&rcmap, a_readonly, pcmap);
  325.     code = dict_put_string(op, "CodeMap", &rcmap);
  326.     if ( code < 0 )
  327.       goto fail;
  328.     return zreadonly(op);
  329. fail:    ifree_object(pcmap, "zbuildcmap(cmap)");
  330.     return code;
  331. }
  332.  
  333. /* ------ Initialization procedure ------ */
  334.  
  335. BEGIN_OP_DEFS(zfcmap_op_defs) {
  336.     {"1.buildcmap", zbuildcmap},
  337. END_OP_DEFS(0) }
  338.